home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Cream of the Crop 3
/
Cream of the Crop 3.iso
/
comm
/
bgft302.zip
/
BGFT300B.EXE
/
BGFTUZPC.ASP
< prev
next >
Wrap
Text File
|
1993-03-03
|
1KB
|
34 lines
; Version 3.02 BackGround File Transfer
; BGFTUZPC.ASP: PROCOMM PLUS version 2 script for BGFT Zmodem upload.
; Copyright (c) 1990-1993 Dirac Systems
; PROCOMM PLUS is a trademark of Datastorm Technologies Inc.
;
; All files marked for upload in file buffer will be uploaded.
;
proc main
MESSAGE " "
MESSAGE "Copyright (c) 1990-1993 Dirac Systems"
MESSAGE " \ /"
MESSAGE "------------------------------------- - o -"
MESSAGE " / \"
MESSAGE "BGFT Zmodem Upload External Protocol"
MESSAGE " "
ASSIGN S0 "1" ; USER DEFINED COMM PORT.
ASSIGN S1 "1200" ; USER DEFINED BAUD RATE.
ASSIGN S2 "BGFTOPT /Q" ; Quiet mode (don't print out results).
STRCAT S2 " /A" ; Acknowledge error, if any.
STRCAT S2 " /R" ; Reconnect COMM port.
STRCAT S2 S0
STRCAT S2 " /B" ; Set baud rate.
STRCAT S2 S1
STRCAT S2 " /~" ; Set protocol.
STRCAT S2 "6" ; USER DEFINED PROTOCOL (Zmodem Upload).
STRCAT S2 " /S" ; Start file(s) transfer.
DOS S2 ; Run BGFTOPT.EXE with appropriate command.
IF FAILURE
MESSAGE "COMMAND.COM NOT FOUND"
EXIT ; End script and go to terminal mode.
ENDIF
BYE ; Exit PROCOMM PLUS version 2 without hanging up.
endproc